home *** CD-ROM | disk | FTP | other *** search
- function CSSetStyleDepth(s,depth) {
- if (CSIsW3CDOM)document.getElementById(s).style.zIndex=depth;
- else if (IsIE())CSIEStyl(s).zIndex=depth;
- else CSNSStyl(s).zIndex=depth;
- }
- function CSGetStyleDepth(s) {
- if (CSIsW3CDOM){CSIDOM();return document.getElementById(s).style.zIndex;}
- else if (IsIE())return (CSIEStyl(s).zIndex);
- else return (CSNSStyl(s).zIndex);
- }